home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_pas / ddplus63.zip / DDPLUS.DOC < prev    next >
Text File  |  1994-07-09  |  5KB  |  87 lines

  1. New Things and Fixes by Steven R. Lorenz
  2.  
  3. 1. IRQs 0-15 now supported.  Comports 1-4 supported.  Required change in
  4.    ASYNC.asm (called SLASYNC here).
  5.    Selectable Port Addresses added to .CTL file so sysop doesn't have to
  6.    have a bunch of if 'nodex == 1 goto xxx' in his doorx.bat.
  7. 2. DV aware routines. Use examples as guide to installation.
  8.    a. DV_Pause added to sreadch to make DV work more smoothly.
  9. 3. High speed BBS modem vs lowspeed user modem problem of lost characters -
  10.    (basically RTS/CTS checking) -  Fixed
  11. 4. Carrierdetect during sendchar. Fixed
  12. 5. Rip detect.  Or WC3.9 or PCBoard15.0 dropfile driven.
  13. 6. Fast and correct ansi color routines.
  14. 7. PCBoard 15 support
  15. 8. Rip Detect or found on WC3.9+ or PCB15 dropfiles
  16. 9. TriBBS dropfile support  (untested)
  17. 10.RBBS vs Super BBS Dorinfo types supported
  18. 11.Lock baud and comm baud rates to 115,200
  19. 12.Windows,WindowsNT,OS/2,DOS 5.0+ time slice releasing.
  20.    A Dos,Win, DV pause is taken after so many read cycles in read loop
  21. 13.fossil support to 38,400 using normal fossil calls.
  22.    fossil support to 115,200 using X00 extended fossil calls.
  23.    Use XFossil for any fossils (X00 or BNU) over 38,400.  This option does
  24.    not open or close the fossil but meerly writes to it the way it is.
  25.  
  26. Versions:
  27. 6.1
  28.   Added mixture of tasker pause and loop cycles in Ripdetect and read char
  29.   to give a smoother response.
  30. 6.2
  31.   Missed Done Routine in 6.1  - now doesn't close if local or X00extOK
  32.   but buffered flag is set to true.
  33.   There was a file being written to when door timed out.  Some OS2 systems
  34.   complained of endless pages being written to their disk.  I'm taking this
  35.   out this version.  So if you have a use for it save it and put it back in.
  36. 6.3
  37.   Wrong-O I guess a lot of you are using this file so I'm putting it back in.
  38.   Added /C to specify comport on command line.  Dropfile comport number will
  39.   override this option.
  40.  
  41. The Following might be added to your sysop.doc file:
  42.  
  43.       ....parameters may be used.
  44.  
  45.             "/E" - Expanded Memory Specification If your machine has over one
  46.           megabyte of memory, then you may have some available.  DDPLUS can
  47.           utilize EMS to improve game performance and reduce conventional
  48.           memory requirements.
  49.           This command will tell DDPLUS.exe to use EMS memory to hold its
  50.           overlay buffer.  Otherwise disc area may be used to hold this buffer.
  51.           This needs a memory manager and when enabled and is compatible with
  52.           DESQview.
  53.  
  54.               "/L"      This tells DDPLUS.EXE to load up in LOCAL mode.
  55.           This is good for testing or when a sysop just wants to "try out" the
  56.           door without messing with his BBS setup.  The "/L" mode will ask the
  57.           user for his name and run the door in local mode.
  58.  
  59.               "/Bxxxxx"   This tells DDPLUS.EXE to lock its baud rate at
  60.           xxxxx.  In order to get the most efficiency out of a high speed
  61.           error correcting modem (9600 baud or above), you may lock the baud
  62.           rate to a speed higher than what the caller is actually using.
  63.           By locking the baud to say 38,400, the modem can compress text data
  64.           that is being sent and achieve a baud rate much higher than the
  65.           actual transmission rate.
  66.           This will lock the baud rate at the same value for all nodes that
  67.           use this command line.  If you perfer a more selective way to lock
  68.           baud use 'LOCKBAUD' command in the DDPLUS.CTL file.
  69.  
  70.               "/Cx"     (where x is 1..4) This specifies a comport number.
  71.           Some bbs software does not create door information files (dropfiles)
  72.           that contain the comport number.  If your bbs does have a comport
  73.           listed in the dropfile then there is no need for this parameter.
  74.           The default is comport 0, local mode.
  75.  
  76.               "/Nx"     (where x is 1..9) This specifies a "node number".
  77.           Some bbs software support multinode environments in which you must
  78.           know the node number of the drop file to use. For example, RBBS-PC
  79.           uses DORINFOx.DEF. If you specified "/N2" then DDPLUS.EXE would
  80.           use DORINFO2.DEF.
  81.  
  82.               "/Pyyy"   This specifies the path to the drop files.
  83.           For example, "/PC:\WC30\WCWORK\NODE1" would tell DDPLUS.EXE to
  84.           look for the drop file in C:\WC30\WCWORK\NODE1. If this is left out
  85.           the program assumes the drop file is local.
  86.  
  87.